Node.named_child

Get this node's *named* child at the given index.

See also [Node::is_named]. This method is fairly fast, but its cost is technically log(i), so you if you might be iterating over a long list of children, you should use [Node::named_children] instead.

struct Node
const @nogc nothrow
named_child
(
size_t i
)

Return Value

Type: auto

A Nulllable!Node

Meta